home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 May / SGI IRIX 6.5 Complementary Applications 2004 May.iso / dist / OpenOffice.idb / usr / OpenOffice / help / en / sbasic.jar / text / sbasic / common / 03120307.xml < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-24  |  2.3 KB  |  38 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>Right Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03120307"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
  3.  
  4.         p.P1{
  5.                 }
  6.         p.P2{
  7.                 }
  8.         span.T1{
  9.                 font-weight:bold;}
  10.         </style></head><body>
  11.   
  12.   
  13.   <help:to-be-embedded Eid="right" xmlns:help="http://openoffice.org/2000/help">
  14.   <p class="Head1"><help:link Id="66594">Right Function [Runtime]</help:link></p>
  15.   <p class="Paragraph">Returns the rightmost "n" characters of a string expression.</p>
  16.   </help:to-be-embedded>
  17.   <p class="Paragraph">See also: <help:link Id="66381" Eid="left" xmlns:help="http://openoffice.org/2000/help">Left Function</help:link>.</p>
  18.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  19.   <p class="Paragraph">Right (Text As String, n As Integer) <help:key-word value="Right" tag="kw66594_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  20.   <p class="Paragraph"><span class="T1">Return value</span>:</p>
  21.   <p class="Paragraph">String</p>
  22.   <p class="Paragraph"><span class="T1">Parameter</span>:</p>
  23.   <p class="Paragraph">Text: Any string expression from which to return the rightmost characters.</p>
  24.   <p class="Paragraph">n: Integer expression that defines the number of characters to be returned. If <span class="T1">n</span> = 0 a zero-length string is returned.</p>
  25.   <p class="Paragraph">The following example converts the given date in the format (YYYY-MM-DD) to the US date format (MM/DD/YYYY).</p>
  26.   <p class="P2">Example:</p>
  27.   <p class="PropText">Sub ExampleUSDate</p>
  28.   <p class="PropText">Dim sInput As String</p>
  29.   <p class="PropText">Dim sUS_date As String</p>
  30.   <p class="PropText">sInput = InputBox("Please input a date in the international format 'YYYY-MM-DD'")</p>
  31.   <p class="PropText">sUS_date = Mid(sInput, 6, 2)</p>
  32.   <p class="PropText">sUS_date = sUS_date & "/"</p>
  33.   <p class="PropText">sUS_date = sUS_date & <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>Right(sInput, 2)</p>
  34.   <p class="PropText">sUS_date = sUS_date & "/"</p>
  35.   <p class="PropText">sUS_date = sUS_date & Left(sInput, 4)</p>
  36.   <p class="PropText">MsgBox sUS_date</p>
  37.   <p class="PropText">End Sub</p>
  38.  </body></html>